home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / UBOX2.C < prev    next >
C/C++ Source or Header  |  1993-05-30  |  226b  |  14 lines

  1. /*
  2.     Copyright(C) 1993 Okome
  3. */
  4.  
  5. #include <normlib.h>
  6. #include <okome.h>
  7.  
  8.  
  9. void ubox2( int x1, int y1, int x2, int y2, int c1, int c2 )
  10. {
  11.     ubox( x1, y1, x2, y2, c1, c2 );
  12.     ubox( x1+1, y1+1, x2-1, y2-1, c1, c2 );
  13. }
  14.